Batch 3 - Class 250 - Computational Thinking 3 (Sorting)

(zoom)

Pre-Class Exercise

Attendance    Kabir, Mihir, Advay, Vansh, Raghav, Angad, Aarkin, Vivaan, Siddharth, Ayush, Aneesh, Harshiet, Shikhar, Arnav, Kushagra, Anshi, Rohan, Rhea, Rehaan

Class Notes:
Review of Computational Thinking - Key elements 
Abstraction: There is a graph, with nodes and edges. Abstraction involves focusing on what is important and ignoring the rest - for example, we have not shown how much each tourist attraction cost for entry.
Generalization: Both problems are similar problems - ask students in what respect. Both problems involved going from one point to all other points and coming back to the original problem.
Algorithm: The method to solve the problem. How did you go about traversing the graph? For this kind of the problem, depth first is an intuitive route - you go down a path as far as you can and you backtrack if its the wrong path and try another one. 
Pattern Matching: It seems that we can solve any "route finding" problem by drawing a graph for that - this is pattern matching.

Relate to the above in context of the knight's tour, tour guide and circular numbers discussed earlier and search (directory, guess who, 20 questions) discussed last week.

We also learned that searching through a sorted list is much easier than jumbled lists - how do we get the list sorted in the first place.

Sorting Algorithms

Applying Computational Thinking to the problems above

Race Horses
There are 25 horses, but only one race track where 5 horses can race at a time. What is the minimum number of races required to determine the 3 fastest horses in order. Horses can be raced over and over again, and take the same time to run the track.

Homework
Sorting Networks (Self Study)
          

References: